home *** CD-ROM | disk | FTP | other *** search
- * Reserves a logical unit or, reserves
- * extents within a logical unit.
-
- @THREAD RESERVE.LOG
- @NEWALIAS SADD SCSIADD.GRA
- @IMPORT SCSICOM.SCR
- SADD DD_OPEN
-
- * 0=Async mode, 1=Sync mode
- SADD SET MODE=1
-
- * Command completion timeout (Secs)
- * 0=the assigned value is the default set by the driver,
- * -1=the assigned value is infinite.
- SADD SET TIMEOUT=0
-
- * 0 = Reserves the entire logical unit for exclusive use
- * 1 = Reserves the extents specified
- SADD SET EXTENT_RESERVE = 0
-
- SADD SET THIRD_PARTY_DEVICE_ID = 3
-
- * 0 = Third Party reservation is not requested.
- * 1 = Reserves the specified logical unit or extents,
- SADD SET THIRD_PARTY_RESERVE=0
-
- * Reservation identification
- SADD SET RESERVATION_ID=0
-
- * Extent list length in bytes
- SADD SET NBytes=0
-
- * Name for paramblock
- SADD SET LABEL = "RESERVE"
-
- SADD RESERVE
-
- SADD DD_CLOSE
-